home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / overxms.exe / OVERXMS.PAS < prev    next >
Pascal/Delphi Source File  |  1993-01-05  |  482b  |  24 lines

  1. { OVERXMS 1.2 - Loads overlays in XMS.  Written by Wilbert van Leijen }
  2.  
  3. { BUG Fix in OVERXMS.ASM by Arnold Bailey [72020,136]   BIX abailey 1/03/93 }
  4.  
  5. Unit OverXMS;
  6.  
  7. {$O- }
  8.  
  9. Interface
  10. uses Overlay;
  11.  
  12. Const
  13.   ovrNoXMSDriver = -7;                 { No XMS driver installed }
  14.   ovrNoXMSMemory = -8;                 { Insufficient XMS memory available }
  15.  
  16. Procedure OvrInitXMS;
  17.  
  18. Implementation
  19.  
  20. Procedure OvrInitXMS; External;
  21. {$L OVERXMS.OBJ }
  22.  
  23. end.  { OverXMS }
  24.